home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Moscow ML 1.42 / src / !runtime / freelist.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-18  |  269 b   |  17 lines  |  [TEXT/R*ch]

  1. /* Free lists of heap blocks. */
  2.  
  3. #ifndef _freelist_
  4. #define _freelist_
  5.  
  6.  
  7. #include "misc.h"
  8. #include "mlvalues.h"
  9.  
  10. char *fl_allocate P((mlsize_t));
  11. void fl_init_merge P((void));
  12. char *fl_merge_block P((char *));
  13. void fl_add_block P((char *));
  14.  
  15.  
  16. #endif /* _freelist_ */
  17.